ComponentOne Xamarin.Android
ItemUnloaded Event


C1.CollectionView Assembly > C1.CollectionView Namespace > C1CacheCollectionView<T> Class : ItemUnloaded Event
Occurs when an item is removed from the cache.
Syntax
'Declaration
 
Public Event ItemUnloaded As EventHandler(Of CacheCollectionViewItemEventArgs(Of T))
'Usage
 
Dim instance As C1CacheCollectionView(Of T)
Dim handler As EventHandler(Of CacheCollectionViewItemEventArgs(Of T))
 
AddHandler instance.ItemUnloaded, handler
Event Data

The event handler receives an argument of type CacheCollectionViewItemEventArgs<T> containing data related to this event. The following CacheCollectionViewItemEventArgs<T> properties provide information specific to this event.

PropertyDescription
Gets the index of the item.  
Gets the item.  
See Also